In [1]:
import graphlab
In [2]:
sales = graphlab.SFrame('home_data.gl/')
In [3]:
sales
Out[3]:
The house price is correlated with the number of square feet of living space.
In [4]:
graphlab.canvas.set_target('ipynb')
sales.show(view="Scatter Plot", x="sqft_living", y="price")
Split data into training and testing.
We use seed=0 so that everyone running this notebook gets the same results. In practice, you may set a random seed (or let GraphLab Create pick a random seed for you).
In [5]:
train_data,test_data = sales.random_split(.8,seed=0)
In [6]:
sqft_model = graphlab.linear_regression.create(train_data, target='price', features=['sqft_living'])
In [7]:
print test_data['price'].mean()
In [8]:
print sqft_model.evaluate(test_data)
RMSE of about \$255,170!
Matplotlib is a Python plotting library that is also useful for plotting. You can install it with:
'pip install matplotlib'
In [9]:
import matplotlib.pyplot as plt
%matplotlib inline
In [10]:
plt.plot(test_data['sqft_living'],test_data['price'],'.',
test_data['sqft_living'],sqft_model.predict(test_data),'-')
Out[10]:
Above: blue dots are original data, green line is the prediction from the simple regression.
Below: we can view the learned regression coefficients.
In [11]:
sqft_model.get('coefficients')
Out[11]:
In [12]:
my_features = ['bedrooms', 'bathrooms', 'sqft_living', 'sqft_lot', 'floors', 'zipcode']
In [13]:
sales[my_features].show()
In [14]:
sales.show(view='BoxWhisker Plot', x='zipcode', y='price')
Pull the bar at the bottom to view more of the data.
98039 is the most expensive zip code.
In [15]:
my_features_model = graphlab.linear_regression.create(train_data,target='price',features=my_features)
In [16]:
print my_features
In [17]:
print sqft_model.evaluate(test_data)
print my_features_model.evaluate(test_data)
The RMSE goes down from \$255,170 to \$179,508 with more features.
The first house we will use is considered an "average" house in Seattle.
In [18]:
house1 = sales[sales['id']=='5309101200']
In [19]:
house1
Out[19]:
In [20]:
print house1['price']
In [21]:
print sqft_model.predict(house1)
In [22]:
print my_features_model.predict(house1)
In this case, the model with more features provides a worse prediction than the simpler model with only 1 feature. However, on average, the model with more features is better.
In [23]:
house2 = sales[sales['id']=='1925069082']
In [24]:
house2
Out[24]:
In [25]:
print sqft_model.predict(house2)
In [26]:
print my_features_model.predict(house2)
In this case, the model with more features provides a better prediction. This behavior is expected here, because this house is more differentiated by features that go beyond its square feet of living space, especially the fact that it's a waterfront house.
In [27]:
bill_gates = {'bedrooms':[8],
'bathrooms':[25],
'sqft_living':[50000],
'sqft_lot':[225000],
'floors':[4],
'zipcode':['98039'],
'condition':[10],
'grade':[10],
'waterfront':[1],
'view':[4],
'sqft_above':[37500],
'sqft_basement':[12500],
'yr_built':[1994],
'yr_renovated':[2010],
'lat':[47.627606],
'long':[-122.242054],
'sqft_living15':[5000],
'sqft_lot15':[40000]}
In [28]:
print my_features_model.predict(graphlab.SFrame(bill_gates))
The model predicts a price of over $13M for this house! But we expect the house to cost much more. (There are very few samples in the dataset of houses that are this fancy, so we don't expect the model to capture a perfect prediction here.)
In [35]:
sales[sales['zipcode'] == 98039]
Out[35]:
In [37]:
sales_1 = sales[sales['zipcode'] == '98039']
print sales_1['price'].mean()
In [38]:
house_3 = sales[(sales['sqft_living'] > 2000) & (sales['sqft_living'] < 4000 )]
In [48]:
print sales.shape
print house_3.shape
print 9111.0/21613.0
In [50]:
advanced_features = [
'bedrooms', 'bathrooms', 'sqft_living', 'sqft_lot', 'floors', 'zipcode',
'condition', # condition of house
'grade', # measure of quality of construction
'waterfront', # waterfront property
'view', # type of view
'sqft_above', # square feet above ground
'sqft_basement', # square feet in basement
'yr_built', # the year built
'yr_renovated', # the year renovated
'lat', 'long', # the lat-long of the parcel
'sqft_living15', # average sq.ft. of 15 nearest neighbors
'sqft_lot15', # average lot size of 15 nearest neighbors
]
In [52]:
advanced_features_model = graphlab.linear_regression.create(train_data, target='price', features=advanced_features)
In [53]:
print my_features_model.evaluate(test_data)
print advanced_features_model.evaluate(test_data)
In [54]:
print 178861.74561891545 - 156757.5481062501